deps: patch Dependabot security alerts (angular & react-native)#259
Merged
Conversation
react-native (login-pkce, token-refresh): re-resolve transitive deps to the patched versions in range — ws 7.5.10 -> 7.5.11 (GHSA-96hv-2xvq-fx4p, high), js-yaml 4.1.1 -> 4.2.0 (GHSA-h67p-54hq-rp68, medium). angular (login-pkce, token-refresh): @angular/build@22.0.1 exact-pins the vulnerable vite/esbuild/@babel/core and is the latest release, so add `resolutions` to force the patched versions: - vite 7.3.2 -> 7.3.5 and 8.0.10 -> 8.0.16 (GHSA-fx2h-pf6j-xcff high, GHSA-v6wh-96g9-6wx3 medium) - esbuild 0.27.7/0.28.0 -> 0.28.1 (GHSA-gv7w-rqvm-qjhr high, GHSA-g7r4-m6w7-qqqr low) - @babel/core 7.29.0 -> 7.29.6 (GHSA-4x5r-pxfx-6jf8 low) All are dev/build-time deps (not shipped in built apps). Verified: both angular samples `ng build` and vitest pass. react/vue already on vite 8.0.16. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR updates Yarn lockfiles (and adds Yarn resolutions for the Angular samples) to clear Dependabot security alerts affecting dev/build-time dependencies across the sample apps.
Changes:
- React Native samples: bump transitive
js-yamlto4.2.0andwsto7.5.11via lockfile re-resolve. - Angular samples: add
resolutionsto force patchedvite,esbuild, and@babel/core, and update lockfiles accordingly.
Reviewed changes
Copilot reviewed 2 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| samples/react-native/token-refresh/yarn.lock | Updates transitive js-yaml and ws versions to patched releases. |
| samples/react-native/login-pkce/yarn.lock | Updates transitive js-yaml and ws versions to patched releases. |
| samples/angular/token-refresh/package.json | Adds Yarn resolutions to force patched vite, esbuild, and @babel/core. |
| samples/angular/token-refresh/yarn.lock | Lockfile updates reflecting the forced patched dependency versions. |
| samples/angular/login-pkce/package.json | Adds Yarn resolutions to force patched vite, esbuild, and @babel/core. |
| samples/angular/login-pkce/yarn.lock | Lockfile updates reflecting the forced patched dependency versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
bwereszczak
approved these changes
Jun 17, 2026
plandzwojczak-sa
approved these changes
Jun 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Clears the open Dependabot vulnerability alerts. All affected packages are dev/build-time dependencies (none ship in the built apps).
Changes
react-native (
login-pkce,token-refresh) — transitive deps re-resolved in range (yarn up -R), lockfile only:ws7.5.10 → 7.5.11 — GHSA-96hv-2xvq-fx4p (high)js-yaml4.1.1 → 4.2.0 — GHSA-h67p-54hq-rp68 (medium)angular (
login-pkce,token-refresh) —@angular/build@22.0.1(latest) exact-pins the vulnerable versions, so addedresolutionsto force the patches:vite7.3.2 → 7.3.5 and 8.0.10 → 8.0.16 — GHSA-fx2h-pf6j-xcff (high), GHSA-v6wh-96g9-6wx3 (medium)esbuild0.27.7 / 0.28.0 → 0.28.1 — GHSA-gv7w-rqvm-qjhr (high), GHSA-g7r4-m6w7-qqqr (low)@babel/core7.29.0 → 7.29.6 — GHSA-4x5r-pxfx-6jf8 (low)react / vue — already on
vite8.0.16 onmain; those alerts are stale and should auto-close. No changes.Verification
ng build✅ andvitest✅ (3 tests pass) with the forced versions.ws6.x /js-yaml3.x lines left untouched.🤖 Generated with Claude Code